Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632702 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/189 - Fractal Tree Visualizer

style.css cody/swapnilsparsh/30DaysOfJavaScript/189 - Fractal Tree Visualizer/style.css
101 Views
0 Comments
html,body {
height: 100%;
}
body {
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
index.html cody/swapnilsparsh/30DaysOfJavaScript/189 - Fractal Tree Visualizer/index.html
274 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Fractal Tree Visualizer</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/189 - Fractal Tree Visualizer/script.js
162 Views
0 Comments
//GLOBAL VARIABLES
var context, canvas;
const len = 150;

//CREATES THE BUTTON

//CREATES THE SLIDER
var slider = document.createElement('INPUT');